|
|
|
|
OnEditClickOutside Method, SftTree Class |
Raises the EditClickOutside event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB |
Protected Overridable Sub OnEditClickOutside( ByVal e As EditClickOutsideEventArgs ) |
C# |
protected virtual void OnEditClickOutside( EditClickOutsideEventArgs e ); |
C++ |
protected: virtual void OnEditClickOutside( EditClickOutsideEventArgs^ e ); |
e
The event data.
Comments
The OnEditClickOutside method raises the EditClickOutside event.
Raising an event invokes the event handler through a delegate.
The OnEditClickOutside method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnEditClickOutside in a derived class, make sure to call the base class's OnEditClickOutside method so that registered delegates receive the event.